home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
MPW_TOOL
/
TOOLS
/
TOOLS_WI
/
PERL
/
UNTESTED
/
H2PL
/
TCBREAK2
< prev
Wrap
Text File
|
1991-04-28
|
180b
|
18 lines
#!/usr/bin/perl
require 'cbreak2.pl';
&cbreak;
$| = 1;
print "gimme a char: ";
$c = getc;
print "$c\n";
printf "you gave me `%s', which is 0x%02x\n", $c, ord($c);
&cooked;